home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / misc / sci / MathPlot.lha / MathPlot / Macros / testrx.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1993-08-08  |  374 b   |  21 lines

  1. /* ARexx Skript zum Testen des ARexxBox-Tests :-) */
  2.  
  3. address 'MPlot_ARexx'
  4. options results
  5.  
  6. /* welche Befehle gibt's denn so? */
  7. help stem a.
  8. /*
  9. This would give a simple list of all commands 
  10.  
  11. do i=0 to a.commandlist.count-1
  12.  say a.commandlist.i
  13. end
  14. */
  15.  
  16. do i=0 to a.commandlist.count-1
  17.  help a.commandlist.i var hilfe
  18.  say hilfe
  19.  drop hilfe /* This drop is needed ! */
  20. end
  21.